home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Resource for Source: C/C++
/
Resource for Source - C-C++.iso
/
codelib2
/
v_02_11
/
2n11070c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-11-01
|
419 b
|
17 lines
; ask the BIOS for the time until midnight flag is returned
; Assemble to a .COM file: tasm p1.asm
; tlink /t p1
CODE SEGMENT
ASSUME CS:CODE
ORG 100H
BEGIN: MOV AH,0
INT 1AH
OR AL,AL
JZ BEGIN
RET
CODE ENDS
END BEGIN